50c0d7ae0d59c34b64b72a6975360f0d5fd45dbc,src/net/java/sip/communicator/impl/protocol/jabber/JingleNodesHarvester.java,JingleNodesHarvester,harvest,#Component#,79
Before Change
= new TransportAddress(ip, ciq.getLocalport() + 1,
Transport.UDP);
candidates.add(local);
component.addLocalCandidate(local);
}
return candidates;
}
After Change
//try to add the candidate to the component and then only add it to
//the harvest not redundant (not sure how it could be red. but ...)
if( component.addLocalCandidate(local))
{
candidates.add(local);
}
}
return candidates;